home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000051_news@newsmaster….columbia.edu _Thu Jul 10 11:57:10 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA22292
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 10 Jul 1997 11:57:10 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA22939
  7.     for kermit.misc@watsun; Thu, 10 Jul 1997 11:57:09 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit won't use text transfer
  12. Date: 10 Jul 1997 15:57:08 GMT
  13. Organization: Columbia University
  14. Lines: 38
  15. Message-ID: <5q30ok$oo1$1@apakabar.cc.columbia.edu>
  16. References: <33C4D7B0.70@mltsa.mlm.lucent.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7308
  19.  
  20. In article <33C4D7B0.70@mltsa.mlm.lucent.com>,
  21. Andrew Fielden  <afielden@mltsa.mlm.lucent.com> wrote:
  22. : Setup:
  23. : C-Kermit 6.0.192, 6 Sep 96, for SunOS 4.1
  24. : C-Kermit 6.0.192, 6 Sep 96, for Red-Hat Linux
  25. : When I download a text file to Linux, Kermit tells me the file type is
  26. : binary.
  27. : I thought the default mode was text. I also issued the command
  28. : set file type text (on both kermits)
  29. : Which has no effect - it still uses binary mode.
  30. : Why is this, and how can I force text file transfer ?
  31. You don't have to.  When transferring between two UNIXes, there is no need
  32. to make a distinction between text and binary UNLESS you are transferring
  33. non-ASCII text (e.g. French, German, Russian, Greek, Hebrew, Japanese, ...)
  34. AND the two UNIXes use different character sets.
  35.  
  36. As noted in the manual, C-Kermit 6.0 has a new feature in which it
  37. "recognizes itself" on the other end and goes into binary mode automatically
  38. if the operating system on both ends is the same.  However, "the same" means
  39. both UNIX, not (e.g.) SunOS vs Linux.  This same feature will also appear in
  40. other forthcoming Kermit programs.
  41.  
  42. To defeat it and FORCE text-mode transfer, use:
  43.  
  44.   SET TRANSFER MODE MANUAL
  45.  
  46. (as opposed to AUTOMATIC).  See the new manual for further details:
  47.  
  48.   http://www.columbia.edu/kermit/ck60manual.html
  49.  
  50. or just type "help set transfer" at the C-Kermit> prompt.
  51.  
  52. - Frank